home *** CD-ROM | disk | FTP | other *** search
Text File | 1997-02-13 | 1.0 KB | 48 lines | [TEXT/MPS ] |
- //# Copyright: © 1993-1994 by Apple Computer, Inc., all rights reserved.
-
- #ifndef _PFTLITR_
- #define _PFTLITR_
-
- #ifndef _ODOBJECT_
- #include "ODObject.idl"
- #endif
-
- //=====================================================================================
- // Classes defined in this interface
- //=====================================================================================
- interface ODPlatformTypeListIterator;
-
-
- //=====================================================================================
- // Class ODPlatformTypeListIterator
- //=====================================================================================
-
- interface ODPlatformTypeListIterator : ODObject
- {
- ODBoolean IsNotComplete();
- ODPlatformType First();
- ODPlatformType Next();
-
-
- #ifdef __SOMIDL__
- implementation
- {
- majorversion = 1; minorversion = 0;
-
- functionprefix = ODPlatformTypeListIterator;
-
- override:
- somUninit;
-
- releaseorder:
- IsNotComplete,
- First,
- Next,
- reserved1;
-
- };
- #endif //# __SOMIDL__
- };
-
- #endif // _PFTLITR_
-